home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / chechbox-text.izs < prev    next >
Text File  |  2005-09-28  |  2KB  |  95 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Checkbox Text 
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>The user no longer needs to click precisely on the checkbox to check and uncheck it. Clicking the text after a checkbox can do this just like windows programs<!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13. <!-- HOW TO INSTALL CHECKBOX TEXT:
  14.  
  15.   1.  Copy code into the HEAD section of document
  16.   2.  Put last coding into the BODY section of document  -->
  17.  
  18. <!-- STEP ONE: Add code into HEAD section of document  -->
  19.  
  20. <HEAD>
  21.  
  22. <SCRIPT LANGUAGE="JavaScript">
  23. <!-- Original:  trs2005@yahoo.com -->
  24. <!-- Modified by:  Ronnie T. Moore, Editor -->
  25. <!-- Modified by:  Avi Kehat (avik@iname.com) -->
  26.  
  27.  
  28.  
  29. <!-- Begin
  30. function changeBox(cbox) {
  31. box = eval(cbox);
  32. box.checked = !box.checked;
  33. }
  34. //  End -->
  35. </script>
  36.  
  37. </HEAD>
  38.  
  39. <!-- STEP TWO: Add code into BODY section of document  -->
  40.  
  41. <BODY>
  42.  
  43. <form name=demoform>
  44. <input type=checkbox name=agreebox>
  45. <a href="" onClick="changeBox('document.demoform.agreebox');return false">Clicking this text also checks the box to the left.</a>
  46. </form>
  47.  
  48.  
  49. <!-- END OF SCRIPT -->
  50. <!/SCRIPT>
  51.  
  52. <!PREVIEW>
  53. <!-- START OF SCRIPT -->
  54.  
  55. <!-- HOW TO INSTALL CHECKBOX TEXT:
  56.  
  57.   1.  Copy code into the HEAD section of document
  58.   2.  Put last coding into the BODY section of document  -->
  59.  
  60. <!-- STEP ONE: Add code into HEAD section of document  -->
  61.  
  62. <HEAD>
  63.  
  64. <SCRIPT LANGUAGE="JavaScript">
  65. <!-- Original:  trs2005@yahoo.com -->
  66. <!-- Modified by:  Ronnie T. Moore, Editor -->
  67. <!-- Modified by:  Avi Kehat (avik@iname.com) -->
  68.  
  69.  
  70.  
  71. <!-- Begin
  72. function changeBox(cbox) {
  73. box = eval(cbox);
  74. box.checked = !box.checked;
  75. }
  76. //  End -->
  77. </script>
  78.  
  79. </HEAD>
  80.  
  81. <!-- STEP TWO: Add code into BODY section of document  -->
  82.  
  83. <BODY>
  84.  
  85. <form name=demoform>
  86. <input type=checkbox name=agreebox>
  87. <a href="" onClick="changeBox('document.demoform.agreebox');return false">Clicking this text also checks the box to the left.</a>
  88. </form>
  89.  
  90.  
  91. <!-- END OF SCRIPT -->
  92. <!/PREVIEW>
  93.  
  94. <!RELATED>NONE<!/RELATED>
  95.